search icon only html & css
// css code
.gsp-search-icon {
display:inline-block;
width: 17px;
height: 17px;
position:relative;
border: 2px solid #fff;
transform: rotate(-45deg);
border-radius: 100%;
right: 50px; top:-12px;
}
.gsp-search-icon:before {
content: '';
position: absolute;
border: 2px solid #fff;
height: 70%;
right: 0;
left: 0;
width: 0;
top: 100%;
margin: auto;
}
// html code
<div class="gsp-search-icon"></div>
Comments
Post a Comment